home *** CD-ROM | disk | FTP | other *** search
/ Resource Library: Multimedia / Resource Library: Multimedia.iso / maestro / source / getopt / makefile < prev    next >
Encoding:
Makefile  |  1993-06-15  |  418 b   |  25 lines

  1. SourceDir        = /home/sioux/collab/Source
  2. DestDir            = /home/sioux/collab/Applications
  3.  
  4. GetOptSourceDir        = $(SourceDir)/GetOpt
  5. BrowseSourceDir        = $(SourceDir)/Browse
  6. NetworkSourceDir    = $(SourceDir)/NetworkProtocol
  7.  
  8. CC = gcc -traditional
  9. OBJECTS = getopt.o
  10. SOURCES = getopt.c
  11. CFLAGS = -g -c
  12.  
  13. all:    $(OBJECTS)
  14.  
  15. install: $(PROGRAM)
  16.     echo "No installation necessary"
  17.  
  18. clean:
  19.     $(RM) *.o core *~ TAGS 
  20.  
  21. tags: 
  22.     etags -t *.[ch]
  23.  
  24.  
  25.